home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-009.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12449);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2003-0966");
  13.  
  14.  name["english"] = "RHSA-2004-009: elm";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated elm packages are now available that fix a buffer overflow
  21.   vulnerability in the \'frm\' command.
  22.  
  23.   Elm is a terminal mode email user agent. The frm command is provided as
  24.   part of the Elm packages and gives a summary list of the sender and subject
  25.   of selected messages in a mailbox or folder.
  26.  
  27.   A buffer overflow vulnerability was found in the frm command. An attacker
  28.   could create a message with an overly long Subject line such that when the
  29.   frm command is run by a victim arbitrary code is executed. The Common
  30.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  31.   CAN-2003-0966 to this issue.
  32.  
  33.   Users of the frm command should update to these erratum packages, which
  34.   contain a backported security patch that corrects this issue.
  35.  
  36.   Red Hat would like to thank Paul Rubin for discovering and disclosing this
  37.   issue.
  38.  
  39.  
  40.  
  41.  
  42. Solution : http://rhn.redhat.com/errata/RHSA-2004-009.html
  43. Risk factor : High';
  44.  
  45.  script_description(english:desc["english"]);
  46.  
  47.  summary["english"] = "Check for the version of the elm packages";
  48.  script_summary(english:summary["english"]);
  49.  
  50.  script_category(ACT_GATHER_INFO);
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  53.  family["english"] = "Red Hat Local Security Checks";
  54.  script_family(english:family["english"]);
  55.  
  56.  script_dependencies("ssh_get_info.nasl");
  57.  
  58.  script_require_keys("Host/RedHat/rpm-list");
  59.  exit(0);
  60. }
  61.  
  62. include("rpm.inc");
  63. if ( rpm_check( reference:"elm-2.5.6-4", release:"RHEL2.1") )
  64. {
  65.  security_hole(0);
  66.  exit(0);
  67. }
  68.  
  69. if ( rpm_exists(rpm:"elm-", release:"RHEL2.1") )
  70. {
  71.  set_kb_item(name:"CVE-2003-0966", value:TRUE);
  72. }
  73.  
  74. set_kb_item(name:"RHSA-2004-009", value:TRUE);
  75.